home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 53696 / 53696.xpi / chrome / content / locator.xul < prev   
Extensible Markup Language  |  2009-12-06  |  923b  |  29 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet type="text/css" href="chrome://glide/content/glide.css"?>
  3. <dialog id="glide-locator-dialog" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  4.     title="Select a Destination"
  5.     buttons="accept,cancel,extra2"
  6.     buttonlabelaccept="Select"
  7.     buttonlabelextra2="New Folder..."
  8.     onload="glideLocatorDialog_Load()"
  9.     ondialogaccept="return glideLocatorDialog_Accept()"
  10.     ondialogextra2="newFolder()">
  11.  
  12.     <script type="application/x-javascript" src="chrome://glide/content/locator.js"></script>
  13.     
  14.     <vbox>
  15.         <description id="glide-locator-instruction" class="instruction"></description>
  16.         <scrollbox id="locator_columns">
  17.             <vbox id="column_load_indicator">
  18.                 <spacer flex="1"/>
  19.                 <hbox>
  20.                     <spacer flex="1"/>
  21.                         <image src="chrome://glide/content/images/ajax.gif"/>
  22.                     <spacer flex="1"/>
  23.                 </hbox>
  24.                 <spacer flex="1"/>
  25.             </vbox>
  26.         </scrollbox>
  27.     </vbox>
  28. </dialog>
  29.